byte array to hex c#

52

byte array to hex c# -

public static string ByteArrayToString(byte[] ba)
{
  return BitConverter.ToString(ba).Replace("-","");
}

Comments

Submit
0 Comments